body {
  background-color: #fff !important;
}

/* Slider Container */
.slider-container {
    width: 100%;
    max-height: 450px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.slider {
    position: relative;
    width: 100%;
    height: 450px;
}
.slide {
    display: none;
    width: 100%;
    height: 450px;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.slide.active {
    display: block;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none; /* Remove background */
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 0; /* Remove circle */
    user-select: none;
}
.left-arrow { left: 20px; }
.right-arrow { right: 20px; }
.slide-text {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    width: 80%;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    display: none;
}
.slide-text.active {
    display: block;
}

/* Use for main heading (e.g., SHIKSHA NA RUKE) */
.slider-heading {
    font-size: 5vw;           /* Responsive large text */
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
}

/* Use for subtitle (e.g., Join hands...) */
.slider-subtitle {
    font-size: 2vw;           /* Responsive subtitle */
    color: #fff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-top: 16px;
    margin-bottom: 0;
    font-weight: 400;
}

.slider-logo {
    max-width: 300px;
    width: 40vw;
    margin-bottom: 18px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Mission & Objective Section */
.mission-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.mission-section.mission-theme {
    margin-top: 48px;
    margin-bottom: 48px;
    border-left: 8px solid #e91e63;
    border-radius: 18px;
    background: linear-gradient(90deg, #fff 80%, #ffe3f0 100%);
    box-shadow: 0 4px 24px rgba(233,30,99,0.06);
    padding: 40px 36px 32px 36px;
    transition: box-shadow 0.2s;
}
.mission-section.mission-theme:hover {
    box-shadow: 0 8px 32px rgba(233,30,99,0.13);
}

.mission-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mission-title-icon {
    color: #ff6a00;
    font-size: 2.1rem;
}

.mission-lead {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 32px;
    line-height: 1.6;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    transition: background 0.18s;
    border-radius: 12px;
    padding: 12px 10px;
}
.mission-list li:hover {
    background: linear-gradient(90deg, #ffe3f0 0%, #fff 100%);
}

.mission-icon {
    color: #43a047;
    font-size: 2rem;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-icon-bg {
    background: linear-gradient(135deg, #e91e63 60%, #ff6a00 100%);
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    flex-shrink: 0;
    transition: transform 0.18s;
}
.mission-list li:hover .mission-icon-bg {
    transform: scale(1.08) rotate(-6deg);
}

.mission-list strong {
    font-size: 1.18rem;
    color: #e91e63;
    font-weight: 700;
}

.mission-desc {
    color: #444;
    margin: 6px 0 0 0;
    font-size: 1.04rem;
    line-height: 1.5;
}

.mission-cta {
    margin-top: 32px;
    text-align: center;
}
.mission-btn {
    background: linear-gradient(90deg, #e91e63 60%, #ff6a00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.13rem;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    display: inline-block;
}
.mission-btn:hover {
    background: linear-gradient(90deg, #ff6a00 60%, #e91e63 100%);
    box-shadow: 0 4px 16px rgba(233,30,99,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Impact Highlights Grid - Shiksha Theme */
.shiksha-impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px auto 0 auto;
    max-width: 950px;
    padding: 0 12px;
}

.shiksha-impact-card {
    background: linear-gradient(135deg, #fff 70%, #ffe3f0 100%);
    border-radius: 22px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.07);
    padding: 38px 0 28px 0;
    text-align: center;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    cursor: pointer;
    border-top: 4px solid #e91e63;
    position: relative;
    overflow: hidden;
}
.shiksha-impact-card:hover {
    box-shadow: 0 6px 32px rgba(233,30,99,0.16);
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, #ffe3f0 60%, #fff 100%);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #e91e63 60%, #ff6a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: background 0.18s;
}

.shiksha-impact-card:hover .impact-number {
    background: linear-gradient(90deg, #ff6a00 60%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.impact-label {
    font-size: 1.13rem;
    color: #444;
    font-weight: 500;
}

/* Program Activities Section - Shiksha Theme */
.shiksha-activities-section {
    margin: 64px auto 0 auto;
    max-width: 1200px;
    text-align: center;
}

.shiksha-activities-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 10px;
}

.shiksha-activities-lead {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 38px;
}

.shiksha-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 24px;
}

.shiksha-activity-card {
    background: linear-gradient(135deg, #fff 80%, #ffe3f0 100%);
    border-radius: 22px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.07);
    padding: 32px 24px 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
    text-align: left;
    min-height: 180px;
}
.shiksha-activity-card:hover {
    box-shadow: 0 6px 32px rgba(233,30,99,0.16);
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, #ffe3f0 60%, #fff 100%);
}

.activity-icon-bg {
    background: linear-gradient(135deg, #e91e63 60%, #ff6a00 100%);
    color: #fff;
    font-size: 2rem;
    border-radius: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    box-shadow: 0 2px 8px rgba(233,30,99,0.10);
    flex-shrink: 0;
    transition: transform 0.18s;
}
.shiksha-activity-card:hover .activity-icon-bg {
    transform: scale(1.08) rotate(-6deg);
}

.shiksha-activity-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #e91e63;
    margin: 0 0 8px 0;
}

.shiksha-activity-card p {
    color: #444;
    font-size: 1.04rem;
    margin: 0;
}

/* Section Spacing & Differentiation */
.mission-section,
.shiksha-impact-grid,
.shiksha-activities-section {
    margin-top: 56px;
    margin-bottom: 56px;
}

.mission-section {
    /* Already has background and border for differentiation */
}

.shiksha-impact-grid {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.04);
    padding: 36px 0 36px 0;
}

.shiksha-activities-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(233,30,99,0.04);
    padding: 36px 0 36px 0;
}

/* --- Gallery Section Styling --- */
.gallery-section {
    margin: 64px auto 56px auto;
    max-width: 1300px;
    text-align: center;
    background: linear-gradient(120deg, #fff0e6 60%, #ffe6f0 100%);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(233,30,99,0.10), 0 2px 8px rgba(255,106,0,0.07);
    padding: 56px 32px 48px 32px;
    position: relative;
    overflow: hidden;
}
.gallery-section::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255,106,0,0.07);
    border-radius: 50%;
    z-index: 0;
}
.gallery-section h2 {
    color: #e91e63;
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 36px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 10px #fff, 0 2px 10px #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 images per row */
    gap: 28px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(255,106,0,0.13);
    transition: transform 0.22s, box-shadow 0.22s;
    border: 4px solid #fff;
    background: #fff;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 12px 32px rgba(233,30,99,0.18);
    border-color: #ff6a00;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .mission-section,
    .shiksha-impact-grid,
    .shiksha-activities-section {
        margin-top: 36px;
        margin-bottom: 36px;
        padding-left: 0;
        padding-right: 0;
    }
    .shiksha-impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shiksha-impact-card {
        padding: 28px 0 18px 0;
    }
    .impact-number {
        font-size: 2rem;
    }
    .shiksha-activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shiksha-activity-card {
        padding: 24px 16px 18px 16px;
    }
    .gallery-section {
        padding: 32px 8px 28px 8px;
    }
    .gallery-grid {
        gap: 16px;
    }
    .gallery-img {
        height: 140px;
    }
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on medium screens */
    }
}
@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 per row on small screens */
    }
}

@media (max-width: 600px) {
    .gallery-section {
        padding: 18px 2vw 18px 2vw;
        border-radius: 18px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .gallery-img {
        height: 110px;
    }
}